home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / include / gsl / gsl_version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-20  |  558 b   |  29 lines

  1. #ifndef __GSL_VERSION_H__
  2. #define __GSL_VERSION_H__
  3.  
  4. #undef __BEGIN_DECLS
  5. #undef __END_DECLS
  6. #ifdef __cplusplus
  7. # define __BEGIN_DECLS extern "C" {
  8. # define __END_DECLS }
  9. #else
  10. # define __BEGIN_DECLS /* empty */
  11. # define __END_DECLS /* empty */
  12. #endif
  13. __BEGIN_DECLS
  14.  
  15.  
  16. #define GSL_VERSION "1.1.1"
  17.  
  18. #ifdef GSL_EXPORTS
  19. __declspec(dllexport) const char * gsl_version;
  20. #elif defined(GSL_IMPORTS)
  21. __declspec(dllimport) const char * gsl_version;
  22. #else
  23. extern const char * gsl_version;
  24. #endif
  25.  
  26. __END_DECLS
  27.  
  28. #endif /* __GSL_VERSION_H__ */
  29.